home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / softwareupdate / system / arexx_for_beginners / index < prev    next >
Text File  |  1997-03-07  |  677b  |  40 lines

  1. ; ARexx For Beginners Index Script
  2.  
  3. ASSIGN >Nil: ARB: ""
  4.  
  5. ECHO "*n*e[1m*e[4mAREXX FOR BEGINNERS   VERSION 2.0*n*nCOPYRIGHT © FRANK BUNTON 1995-1997*e[0m"
  6.  
  7. ECHO "*nNow accessing the INDEX file for you to select from"
  8. ECHO "*nThis window will close while the INDEX is loading"
  9.  
  10. WHICH >Nil: Multiview
  11.  
  12. IF NOT WARN
  13.  
  14.   RUN >Nil: Multiview ARB:Misc/Index.Text
  15.  
  16.   SKIP End
  17.  
  18. ENDIF
  19.  
  20. WHICH >Nil: Amigaguide
  21.  
  22. IF NOT WARN
  23.  
  24.   RUN >Nil: Amigaguide ARB:Misc/Index.Text
  25.  
  26.   SKIP End
  27.  
  28. ENDIF
  29.  
  30. ECHO "*nNeither MULTIVIEW nor AMIGAGUIDE have been found in your system's path."
  31. ECHO "Please click on the file *"PATH SETTING*"."
  32.  
  33. ASK "*nPRESS THE RETURN KEY TO CONTINUE"
  34.  
  35. LAB End
  36.  
  37. WAIT 2 SECS
  38.  
  39. ENDCLI
  40.